home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_11_06
/
1106014a
< prev
next >
Wrap
Text File
|
1993-04-10
|
224b
|
14 lines
#include <wchar.h>
static wchar_t hirigana = wctype("hirigana");
int ishiri(wchar_t *wcs)
{ /* test each element of string */
while (*wcs)
if (!iswctype(*wcs++, hirigana))
return (0);
return (1);
}